Component org.nuxeo.ecm.platform.comment.widgets
In bundle org.nuxeo.ecm.platform.comment.web
Resolution Order
326
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.platform.comment.widgets--widgettypes
- org.nuxeo.ecm.platform.comment.widgets--widgets
- org.nuxeo.ecm.platform.comment.widgets--actions
XML Source
<?xml version="1.0" encoding="UTF-8"?>
<component name="org.nuxeo.ecm.platform.comment.widgets">
<extension target="org.nuxeo.ecm.platform.forms.layout.WebLayoutManager"
point="widgettypes">
<widgetType name="document_comments_count">
<configuration>
<sinceVersion>5.7.2</sinceVersion>
<title>Comments Count</title>
<description>
<p>This widget displays how many comments a document has.</p>
<p>
It requires the following fields configuration: first field maps
the document model.
</p>
</description>
<categories>
<category>summary</category>
</categories>
<supportedModes>
<mode>view</mode>
</supportedModes>
<!-- no configurable properties -->
</configuration>
<handler-class>
org.nuxeo.ecm.platform.forms.layout.facelets.plugins.TemplateWidgetTypeHandler
</handler-class>
<property name="template">
/widgets/summary/comments_count_widget_template.xhtml
</property>
</widgetType>
</extension>
<extension target="org.nuxeo.ecm.platform.forms.layout.WebLayoutManager"
point="widgets">
<widget name="document_comments_count" type="document_comments_count" />
</extension>
<extension target="org.nuxeo.ecm.platform.actions.ActionService"
point="actions">
<action id="summary_document_comments_count" type="widget" order="30">
<category>SUMMARY_INDICATORS</category>
<filter-id>commentable</filter-id>
<filter-id>mutable_document</filter-id>
<filter-id>not_anonymous</filter-id>
<properties>
<property name="widgetName">document_comments_count</property>
</properties>
</action>
</extension>
</component>